From: Richard M. Stallman Date: Mon, 22 Mar 1993 06:54:36 +0000 (+0000) Subject: (Fy_or_n_p): Handle `recenter' response type. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96749 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=29944b73c7130f86697abb86723c5c3cedee02b4;p=emacs.git (Fy_or_n_p): Handle `recenter' response type. --- diff --git a/src/fns.c b/src/fns.c index 75c0dfbf8a5..27927d73abe 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1131,6 +1131,12 @@ Also accepts Space to mean yes, or Delete to mean no.") answer = 1; break; } + else if (EQ (def, intern ("recenter"))) + { + Frecenter (Qnil); + xprompt = prompt; + continue; + } else if (EQ (def, intern ("quit"))) Vquit_flag = Qt;